home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 66
/
Vol 66.iso
/
games
/
doeo.swf
/
scripts
/
DefineButton2_1091
/
BUTTONCONDACTION on(rollOver).as
Wrap
Text File
|
2013-04-24
|
623b
|
31 lines
on(rollOver){
if(_root.enterok != 1)
{
_parent._rotation = random(360);
if(_parent._y > 225)
{
_parent._y -= 70 + random(70);
if(_parent._x > 275)
{
_parent._x -= 70 + random(120);
}
else
{
_parent._x += 70 + random(120);
}
}
else
{
_parent._y += 70 + random(70);
if(_parent._x > 275)
{
_parent._x -= 70 + random(120);
}
else
{
_parent._x += 70 + random(120);
}
}
}
}